laravel csrf protection

40

laravel csrf protection -

<form method="POST" action="/profile">
    {{ csrf_field() }}
    ...
</form>

laravel csrf token or protection or laravel form -

<form method="POST" action="/profile">
    @csrf
    ...
</form>

Comments

Submit
0 Comments